home *** CD-ROM | disk | FTP | other *** search
-
- # the debug version installer script name
- debugScriptName = "{scriptName}.debug"
-
- # make the debug version of finished installer script
- "{debugScriptName}" Δí "{scriptName}"
- # establish current date with time of NOON
- set theTime "'`date -d -s` 12:00:00 PM'"
- # make a copy of the finished installer script and rename the copy
- Duplicate -y "{scriptName}" "{scriptName} w/ Debugger"
- # add the installer debugger resources to the copied installer script
- Rez -m "Installer Debugger.r" -append -o "{scriptName} w/ Debugger"
- # set creation and modification dates and times, set attributes
- SetFile -a b -d {theTime} -m {theTime} "{scriptName} w/ Debugger"
-
- # make the standard version of finished installer script
- "{scriptName}" Δí makefile "{scriptName}.r"
- # establish current date with time of NOON
- set theTime "'`date -d -s` 12:00:00 PM'"
- # rez the installer source into the form that the installer can read
- Rez "{scriptName}.r" -o "{scriptName}" -t 'kajr' -c 'kajr'
- # set creation and modification dates and times, set attributes
- SetFile -a b -d {theTime} -m {theTime} "{scriptName}"
- # run scriptcheck utility on the rezzed installer script
- ScriptCheck "{scriptName}" -h -d -a
-
-